* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Eliminar cualquier desbordamiento horizontal inesperado */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: sans-serif;
}

/* Barra amarilla */
.barra-top {
  background-color: #ffd33d;
  color: #002855;
  padding: 6px 15px;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  justify-content: space-between; /* Cambié a 'space-between' para separar el título y los mensajes */
  align-items: center;
  flex-wrap: wrap; /* Para que los elementos se acomoden bien */
}

/* Título dentro de la barra */
.barra-top h1 {
  font-size: 18px;  /* Ajuste el tamaño del texto */
  font-weight: bold;
  color: #000;
  margin: 0; /* Elimina margen para ajustarlo bien en el espacio */
}

/* Mensajes dentro de barra amarilla */
.barra-top .mensaje-rotativo span {
  margin: 0 30px;  /* Aumenté el margen entre las frases */
  font-size: 14px;  /* Asegúrate de que los textos de los mensajes sean de un tamaño adecuado */
}

/* Mensaje rotativo animado en la barra amarilla */
.mensaje-rotativo {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-mensaje 20s linear infinite;
}

.mensaje-rotativo span {
  display: inline-block;
  padding: 0 80px;  /* Aumenté el espacio entre las frases */
}

/* Animación de desplazamiento horizontal */
@keyframes scroll-mensaje {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Barra azul fija */
.navbar {
  background-color: #002855;
  color: white;
  padding: 10px 15px;
  position: sticky;      /* Se fija al hacer scroll */
  top: 0;                /* Se adhiere arriba */
  z-index: 9999;          /* Se muestra por encima del contenido */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Contenido dentro de la navbar */
.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Íconos de redes sociales */
.redes-sociales {
  display: flex;
  flex-direction: row;   /* Asegura que estén en fila */
  gap: 10px;             /* Espaciado entre íconos */
  align-items: center;
}

.icono-red {
  background-color: white;
  color: #002855;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Efecto de zoom y color por red social al pasar el mouse */
.icono-red:hover {
  transform: scale(1.15);
}

/* Facebook */
.icono-red.facebook:hover {
  background-color: #1877f2;
  color: white;
}

/* Instagram */
.icono-red.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white;
}

/* TikTok */
.icono-red.tiktok:hover {
  background-color: #000000;
  color: #69C9D0; /* color azul tiktok */
}


/* Buscador */
.search-container {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.search-box {
  background-color: white;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  width: 100%;
  max-width: 600px;
}

.search-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
}

.search-icon {
  margin-right: 10px;
  color: gray;
}

/* Contador de visitas */
.visitas {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.visitas strong {
  background-color: limegreen;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
}

/* barra 3 */
.barra-categorias {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center; /* Cambiado de space-between a center */
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 1000;
}

/* Logo más pegado a la izquierda */
.barra-categorias .contenedor-logo {
  position: absolute;
  left: 20px;
}

.contenedor-logo img {
  height: 34px;
}

.menu-categorias {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.menu-categorias li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Segoe UI', sans-serif;
  transition: color 0.2s ease;
}

.menu-categorias li a:hover {
  color: #e60023;
}
/* Video presentación */
/* NUEVA SECCIÓN GENERAL */
.seccion-quienes-somos {
  background-color: #001f4d;
  color: white;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.contenedor-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.video-cuadro {
  flex: 1 1 400px;
  max-width: 500px;
  aspect-ratio: 16 / 9;
  position: relative;
  border: 4px solid #ffcc00;
  border-radius: 12px;
  overflow: hidden;
}

.video-presentacion {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-presentacion video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: black;
}

.video-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.control-button {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
}

.texto-quienes {
  flex: 1 1 400px;
  max-width: 600px;
}

.texto-quienes h1 {
  color: #ffcc00;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.texto-quienes p {
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

/* Misión y visión mejor alineadas */
.mision-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding-top: 30px;
  padding-bottom: 20px;
}

.bloque {
  background-color: #002b66;
  border-left: 4px solid #ffcc00;
  padding: 20px;
  max-width: 400px;
  border-radius: 8px;
}

.bloque h2 {
  color: #ffcc00;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.bloque p {
  line-height: 1.6;
  font-size: 1rem;
}

/* Galería de videos */
.galeria-videos {
  margin-top: 50px;
  text-align: center;
}

.galeria-videos h2 {
  color: #ffcc00;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.videos-grid iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}
.footer {
  background-color: #001a3a;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 220px;
  margin: 10px 15px;
}

.footer-column h4 {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: #ffc107;
}

.footer-column p {
  font-size: 14px;
  margin: 6px 0;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
}

.footer-column a:hover {
  color: #ffc107;
}
/* Estilos para las categorías */
.footer-categories {
  display: flex;
  justify-content: space-between;
}

.footer-categories-column {
  width: 48%; /* Cada columna de categorías ocupa el 48% del ancho */
}

.footer-categories li {
  list-style: none;
}

.footer-categories a {
  color: #333;
  text-decoration: none;
}

.footer-categories a:hover {
  color: #4CAF50;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: white;
  margin-right: 12px;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s;
}

.social-icons a:hover {
  color: #ffc107;
  transform: scale(1.2);
}


.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
}
